google.golang.org/grpc/internal/transport.Stream.fc (field)

13 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L790: 		s.fc = &inFlow{limit: uint32(t.initialWindowSize)}
		http2_client.go#L1069: 	if w := s.fc.maybeAdjust(n); w > 0 {
		http2_client.go#L1078: 	if w := s.fc.onRead(n); w > 0 {
		http2_client.go#L1091: 			s.fc.newLimit(n)
		http2_client.go#L1147: 		if err := s.fc.onData(size); err != nil {
		http2_client.go#L1152: 			if w := s.fc.onRead(size - uint32(len(f.Data()))); w > 0 {
		http2_server.go#L380: 		fc:  &inFlow{limit: uint32(t.initialWindowSize)},
		http2_server.go#L705: 	if w := s.fc.maybeAdjust(n); w > 0 {
		http2_server.go#L715: 	if w := s.fc.onRead(n); w > 0 {
		http2_server.go#L728: 		s.fc.newLimit(n)
		http2_server.go#L788: 		if err := s.fc.onData(size); err != nil {
		http2_server.go#L793: 			if w := s.fc.onRead(size - uint32(len(f.Data()))); w > 0 {
		transport.go#L257: 	fc           *inFlow